Bypasses elements in a parallel sequence as long as a specified
condition is true and then returns the remaining elements.
Namespace:
System.Linq
Assembly:
System.Threading (in System.Threading.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Function SkipWhile(Of TSource) ( _
source As ParallelQuery(Of TSource), _
predicate As Func(Of TSource, Boolean) _
) As ParallelQuery(Of TSource) |
Parameters
- source
- Type: System.Linq..::.ParallelQuery<(Of <(TSource>)>)
The sequence to return elements from.
- predicate
- Type: System..::.Func<(Of <(TSource, Boolean>)>)
A function to test each element for a condition.
Type Parameters
- TSource
- The type of elements of source.
Return Value
A sequence that contains the elements from the input sequence starting at
the first element in the linear series that does not pass the test specified by
predicate.
Exceptions
Exception | Condition |
---|
System..::.ArgumentNullException |
source or predicate is a null reference (Nothing in Visual Basic).
|
See Also